hash/maphash.Hash.state (field)

13 uses

	hash/maphash (current package)
		maphash.go#L105: 	state Seed          // current hash of all flushed bytes
		maphash.go#L125: 		h.state = seed
		maphash.go#L162: 			h.state.s = rthash(b[:bufSize], h.state.s)
		maphash.go#L189: 			h.state.s = rthashString(s[:bufSize], h.state.s)
		maphash.go#L214: 	h.state = seed
		maphash.go#L222: 	h.state = h.seed
		maphash.go#L232: 	h.state.s = rthash(h.buf[:h.n], h.state.s)
		maphash.go#L245: 	return rthash(h.buf[:h.n], h.state.s)
		maphash_runtime.go#L69: 	h.state.s = comparableHash(v, h.state)